home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / protos / mathmodule_protos.h < prev    next >
C/C++ Source or Header  |  1997-03-02  |  2KB  |  31 lines

  1. /* Prototypes for functions defined in Modules/mathmodule.c  */
  2.  
  3. #ifndef __SASC
  4. static PyObject * math_1(PyObject * args,double (* func)(double ));
  5. static PyObject * math_2(PyObject * args,double (* func)(double , double ));
  6. #endif
  7. static PyObject * math_error(void);
  8. static PyObject * math_acos(PyObject * self,PyObject * args);
  9. static PyObject * math_asin(PyObject * self,PyObject * args);
  10. static PyObject * math_atan(PyObject * self,PyObject * args);
  11. static PyObject * math_atan2(PyObject * self,PyObject * args);
  12. static PyObject * math_ceil(PyObject * self,PyObject * args);
  13. static PyObject * math_cos(PyObject * self,PyObject * args);
  14. static PyObject * math_cosh(PyObject * self,PyObject * args);
  15. static PyObject * math_exp(PyObject * self,PyObject * args);
  16. static PyObject * math_fabs(PyObject * self,PyObject * args);
  17. static PyObject * math_floor(PyObject * self,PyObject * args);
  18. static PyObject * math_fmod(PyObject * self,PyObject * args);
  19. static PyObject * math_hypot(PyObject * self,PyObject * args);
  20. static PyObject * math_log(PyObject * self,PyObject * args);
  21. static PyObject * math_log10(PyObject * self,PyObject * args);
  22. static PyObject * math_pow(PyObject * self,PyObject * args);
  23. static PyObject * math_sin(PyObject * self,PyObject * args);
  24. static PyObject * math_sinh(PyObject * self,PyObject * args);
  25. static PyObject * math_sqrt(PyObject * self,PyObject * args);
  26. static PyObject * math_tan(PyObject * self,PyObject * args);
  27. static PyObject * math_tanh(PyObject * self,PyObject * args);
  28. static PyObject * math_frexp(PyObject * self,PyObject * args);
  29. static PyObject * math_ldexp(PyObject * self,PyObject * args);
  30. static PyObject * math_modf(PyObject * self,PyObject * args);
  31.